function setupBstirValues() {bstirFadeTitles[0] = "How Can I Get Her to FAll In Love With Me? – Follow These Expert ..."; bstirFadeLinks[0] = "http://dateprettygirl.com/?p=1160"; bstirFadeSnippets[0] = "Fri, 22 Ja <br> And that whole acting like a jerk attitude does attract some girls but it only last for awhile. So if you want to att..."; bstirFadeTitles[1] = "Do You Know The Secrets Of How To Make A Man Fall In Love With You?"; bstirFadeLinks[1] = "http://dateprettygirl.com/?p=1170"; bstirFadeSnippets[1] = "Sun, 24 Ja <br> Do you know what the number one secret is on how to make a man fall in love with you? The number one secret is to be ..."; bstirFadeTitles[2] = "How to succeed in Free Online Dating by Truedate4u"; bstirFadeLinks[2] = "http://dateprettygirl.com/?p=1143"; bstirFadeSnippets[2] = "Wed, 20 Ja <br> Online Dating is a fun and exciting, when you find someone who matches absolutely your expectations. Its completely d..."; bstirFadeTitles[3] = "Find romance again with divorced dating"; bstirFadeLinks[3] = "http://dateprettygirl.com/?p=1118"; bstirFadeSnippets[3] = "Sat, 16 Ja <br> Try and keep things light and fun, and rather than getting into a relationship too quickly, date a few different peop..."; bstirFadeTitles[4] = "Dating Tips for Smoking Hot Dates"; bstirFadeLinks[4] = "http://dateprettygirl.com/?p=1135"; bstirFadeSnippets[4] = "Tue, 19 Ja <br> You want the air around you and your date to sizzle with passion and threaten to consume all those who get in between..."; }

        var bstir_FadeOut = 255;
        var bstir_FadeIn=0;
        var bstir_Fade = 0;
        var bstir_FadeStep = 3;
        var bstir_FadeWait = 10000;
        var bstir_bFadeOut = true;
        var bstir_iFadeInterval;

        var bstirFadeLinks;
        var bstirFadeTitles;
        var bstirFadeSnippets;
        var bstirFadeCursor = 0;
        var bstirFadeMax;
        var bstirTitleElement;
        var bstirSnippetElement;

        function startBstir() {
          bstirTitleElement = document.getElementById("bstir_title");
          bstirSnippetElement = document.getElementById("bstir_snippet");
          bstir_iFadeInterval = setInterval(showBstirItem, 10);
          bstirFadeLinks = new Array();
          bstirFadeTitles = new Array();
          bstirFadeSnippets = new Array();
          setupBstirValues();
          bstirFadeMax = bstirFadeLinks.length-1;
          setBstirItem();
        }

        function setBstirItem() {
          bstirTitleElement.innerHTML = bstirFadeTitles[bstirFadeCursor];
          bstirTitleElement.href = bstirFadeLinks[bstirFadeCursor];
          bstirSnippetElement.innerHTML = bstirFadeSnippets[bstirFadeCursor];
        }

        function showBstirItem() {
          if (bstir_bFadeOut) {
            bstir_Fade+=bstir_FadeStep;
            if (bstir_Fade>bstir_FadeOut) {
                  bstirNext();
            }
          } else {
            bstir_Fade-=bstir_FadeStep;
            if (bstir_Fade<bstir_FadeIn) {
              clearInterval(bstir_iFadeInterval);
              setTimeout(bstirResume, bstir_FadeWait);
              bstir_bFadeOut=true;
            }
          }
          if ((bstir_Fade<bstir_FadeOut)&&(bstir_Fade>bstir_FadeIn)){
            bstirTitleElement.style.color = "#" + bstirToHex(bstir_Fade);
            bstirSnippetElement.style.color = "#" + bstirToHex(bstir_Fade);
          }
        }

        function bstirResume() {
          bstir_iFadeInterval = setInterval(showBstirItem, 10);
        }

        function bstirNext() {
                bstirFadeCursor++;
            if (bstirFadeCursor>bstirFadeMax)
              bstirFadeCursor=0;
            setBstirItem();
                bstir_bFadeOut = false;
        }

        function bstirToHex(strValue) {
          try {
            var result= (parseInt(strValue).toString(16));

            while (result.length !=2)
                    result= ("0" +result);
            result = result + result + result;
            return result.toUpperCase();
          }
          catch(e){}
        }

        startBstir();

        